home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000064_news@columbia.edu _Fri Jan 17 14:53:00 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.8.3/8.8.3) with ESMTP id OAA16448 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 17 Jan 1997 14:52:59 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.8.3/8.8.3) id OAA16211 for kermit.misc@watsun; Fri, 17 Jan 1997 14:52:58 -0500 (EST)
  4. Path: news.columbia.edu!panix!arclight.uoregon.edu!newsfeeds.sol.net!newspump.sol.net!howland.erols.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Problem with NUM-Lock key
  8. Message-ID: <1997Jan17.121328.92139@cc.usu.edu>
  9. Date: 17 Jan 97 12:13:28 MDT
  10. References: <5bhmp7$l43@slkc2.slkc.uswest.net>
  11. Organization: Utah State University
  12. Lines: 74
  13. Xref: news.columbia.edu comp.protocols.kermit.misc:6418
  14.  
  15. In article <5bhmp7$l43@slkc2.slkc.uswest.net>, ekololli@utah.uswest.net (Abraham Kololli) writes:
  16. > Hi Everyone;
  17. > I have couple of clients who constantly do data entry and use their
  18. > NUMLOCK key to do data entry.  They use Kermit 3.14 for Terminal
  19. > Emulation, and emulate a VT320.  From time to time,  Kermit does not
  20. > recognize that the NUMLOCK key is ON, and acts as if the NUMLOCK key
  21. > is not selected.
  22. > These clients have an enhanced 101 keyboard, and I have replaced the
  23. > keyboard several time, but I don't think the the problem is the
  24. > keyboard.  Also, whenever the do CONTRL W, which in VMS means refresh
  25. > the screen, they NUMLOCK key gets recognized and everything seems to
  26. > be working normal.  So everytime they experience this problem, they
  27. > press CONTRL W, and the problem disappears.  Is there a solution to
  28. > this problem?  Is there anything I can do to resolve this issue?
  29. > Thank you for your time.  Please send me e-mail directly, if this
  30. > problem has been discussed in this newsgroup.
  31. > Sincerely,
  32. > Ebrahim Kololli
  33. > ekololli@utah.uswest.net
  34. > /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
  35. > Ebrahim Kololli
  36. > Network Support Supervisor
  37. > Utah Transit Authority
  38. > MIS Department
  39. > 3600 South 700 West
  40. > Salt Lake City, UT 84119
  41. > email: ekololli@utah.uswest.net
  42. > /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
  43. -----------------------
  44.     Most likely the remote host is doing the changes via commands sent
  45. from it to the MSK terminal emulator. From terminal emulation doc msvibm.vt:
  46.  
  47.  CSI ? Ps;...;Ps h  SM        Set DEC mode, see table below
  48.  CSI ? Ps;...;Ps l  RM        Reset DEC mode, see table below
  49.          Ps     Mnemonic       Mode           Set (h)        Reset (l)
  50.          0                     error (ignored)
  51.          1      DECCKM         cursor keys    application    cursor/numeric
  52.          2      DECANM         ANSI          VT320/VT102    VT52
  53.          3      DECCOLM        Columns        +132 col       80 col
  54.          4      DECSCLM       *Scrolling      smooth         jump
  55.          5      DECSCNM        Screen, whole  reverse video  normal
  56.          6      DECOM          Origin         stay in margins ignore margins
  57.          7      DECAWM         Autowrap       on             off
  58.          8      DECARM        *Autorepeat     on             off
  59.          9      DECINLM       *Interlace      on             off
  60.          18     DECPFF         Printer term   Form Feed         none
  61.          19     DECPEX         Printer extent screen         scrolling region
  62.      25    DECTCEM           Cursor          visible         invisible
  63.          34     DECRLM         Writing        right to left  left to right
  64.      35    DECHEBM     +++Invoke macro:  KEYBOARDS      KEYBOARDR
  65.      36    DECHEM     ++++Hebrew encoding Multinational  Hebrew NRC
  66.          38     n/a            Graphics (Tek) ++graphics     text
  67.      42    DECNRCM           Nat Repl Char  enable         disable
  68.      66    DECNKM           Numeric keypad application    numeric
  69.      68    DECKBUM          *Typewriter     data process   typewriter
  70.                            + Horizontal scrolling. See comments on EGA boards.
  71.                           ++ Ignored if DISABLE TEK has been given.
  72.              +++ VT320 DEC supplements for Hebrew systems adapted
  73.                  from VT420-Hebrew terminals, invokes a new
  74.                  keyboard map. Kermit invokes macros above.
  75.             ++++ Macros TerminalR/S have been removed in v3.13.
  76.     (SET TERMINAL CHARACTER-SET <country> must be given to employ DEC
  77.     National Replacement Characters. Enabling NRCs replaces    G0..G3 chars
  78.     sets with the NRC set and disables 8-bit controls; disabling only
  79.     re-enables 8-bit controls.)
  80.  
  81.  
  82.     Notice the 66 item on the numeric keypad state. The host sends such
  83. commands. You can also issue MSK command SET TERM KEYPAD NUMERIC or
  84. APPLICATION.
  85.     Joe D.